home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Utilities / Programming / EnterAct 3.5 / Drag_on Modules / hAWK programs / $EchoArgs < prev    next >
Encoding:
Text File  |  1994-06-02  |  248 b   |  9 lines  |  [TEXT/KEEN]

  1. # $EchoArgs - produces full path names of input files.
  2. #Typically use the "MFS selected files" input option
  3. #with "Show stdout" and "Select all of stdout" selected
  4.  
  5. BEGIN {
  6.     for (i = 1; i < ARGC; ++i)#note ARGV[0] is just "hAWK"
  7.         print ARGV[i]
  8.     }
  9.